home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / PGM_TOOL / PARAMS / TARGET.PAS < prev   
Pascal/Delphi Source File  |  1992-02-01  |  235b  |  18 lines

  1. program target; {test}
  2.  
  3. type
  4.     tConfig = record
  5.         magic: string[10];
  6.         cdata: string[20];
  7.     end;
  8.  
  9. const
  10.     Config: tConfig = (
  11.         magic: '!)@(#*$&%^';
  12.         cdata: '/c+/d-/e12//////////'
  13.     );
  14.  
  15. begin
  16.     writeln(Config.cdata);
  17. end.
  18.